home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / fllab200.zip / FLASHDEM.DPR < prev    next >
Text File  |  1995-11-25  |  271b  |  15 lines

  1. program Flashdem;
  2.  
  3. uses
  4.   Forms,
  5.   Flashfrm in 'FLASHFRM.PAS' {DemoForm1},
  6.   Flashfr2 in 'FLASHFR2.PAS' {DemoForm2};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.     Application.CreateForm(TDemoForm1, DemoForm1);
  12.   Application.CreateForm(TDemoForm2, DemoForm2);
  13.   Application.Run;
  14. end.
  15.